home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 15 / Amiga Plus Leser CD 15.iso / Tools / Development / yacas_alg / yacas_morphos / share / yacas / include / xmltokenizer.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-03-13  |  428 b   |  22 lines

  1.  
  2. #ifndef _xmltokenizer_h_
  3. #define _xmltokenizer_h_
  4.  
  5. #include "yacasbase.h"
  6. #include "tokenizer.h"
  7.  
  8. class XmlTokenizer : public LispTokenizer
  9. {
  10.     
  11. public:
  12.     XmlTokenizer() {}
  13.     /// NextToken returns a string representing the next token,
  14.     /// or an empty list.
  15.     virtual LispStringPtr NextToken(LispInput& aInput,
  16.                                     LispHashTable& aHashTable);
  17.     virtual ~XmlTokenizer();
  18. };
  19.  
  20. #endif
  21.  
  22.